home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Win9x AutoLogon.xpl < prev    next >
Text File  |  2003-06-04  |  1KB  |  45 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="Network\Auto Login\Windows 98/ME"
  5. "UIPATH 2"="Startup/Shutdown\Startup\Windows 9x/ME\29) Auto Login"
  6. "NAME"="Settings"
  7. "VERSION"="1.20"
  8. "OSVERSION"="00101"
  9. "LANGUAGE"="VBScript"
  10. "TEXT 1"="Logon to Network"
  11. "DESCRIPTION 1"="To disable logon requirement [allow anonymous user], check box."
  12. "AUTHOR"="Ojatex@aol.com"
  13. "CONTACTURL"="http://members.aol.com/ojatex/"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"=" "
  16.  
  17.  
  18. Sub Plugin_Initialize 
  19.     i=RegReadValue("HKLM\Software\Microsoft\Windows\CurrentVersion\Network\Real Mode Net\AutoLogon")
  20.     if i="00" then SetUIElement 1,true 
  21. End Sub
  22.  
  23.  
  24. Sub Plugin_CheckData(ElementIndex)
  25. End Sub
  26.  
  27. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  28.  b=GetUIElement(1)
  29.  if b=true then
  30.     Call RegWriteValue("HKLM\Software\Microsoft\Windows\CurrentVersion\Network\Real Mode Net\AutoLogon","00",3)
  31.  else
  32.     if RegValueExists("HKLM\Software\Microsoft\Windows\CurrentVersion\Network\Real Mode Net\AutoLogon")=true then
  33.        Call RegDeleteValue("HKLM\Software\Microsoft\Windows\CurrentVersion\Network\Real Mode Net\AutoLogon")
  34.     end if
  35.  end if
  36.  
  37. End Sub
  38.  
  39.  
  40. Sub Plugin_Terminate 
  41. End Sub
  42.  
  43.  
  44.  
  45.